projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a48691d
)
* lisp.h (LISP_MAKE_RVALUE): Delete disabled version, making XCAR and XCDR real
author
Ken Raeburn
<raeburn@raeburn.org>
Sun, 19 May 2002 23:14:07 +0000
(23:14 +0000)
committer
Ken Raeburn
<raeburn@raeburn.org>
Sun, 19 May 2002 23:14:07 +0000
(23:14 +0000)
rvalues in most configurations.
src/lisp.h
patch
|
blob
|
history
diff --git
a/src/lisp.h
b/src/lisp.h
index b4997f484fc8e7c2aad06848845d69728a7b604d..3f9cee4474d016914f7fd17985133a3f4012d153 100644
(file)
--- a/
src/lisp.h
+++ b/
src/lisp.h
@@
-629,11
+629,6
@@
struct Lisp_Cons
#define XCDR_AS_LVALUE(c) (XCONS ((c))->cdr)
#endif
-/* Okay, we're not quite ready to turn this on yet. A few files still
- need to be updated and tested. */
-#undef LISP_MAKE_RVALUE
-#define LISP_MAKE_RVALUE(x) (x)
-
/* Use these from normal code. */
#define XCAR(c) LISP_MAKE_RVALUE(XCAR_AS_LVALUE(c))
#define XCDR(c) LISP_MAKE_RVALUE(XCDR_AS_LVALUE(c))